home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gdevsco.c < prev    next >
C/C++ Source or Header  |  1995-02-05  |  7KB  |  276 lines

  1. /* Copyright (C) 1989, 1992, 1993 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gdevsco.c - 17Jul91 - wb - based on gdevpcfb.c */
  20. /* 31Jul91 - Rick Calder rick@rick.att.com - ifdefs for AT&T UNIX 4.0 2.1 */
  21. /* 13Sep91 - wb - modify for gs24b2 */
  22. /*  9Mar92 - wb - modify for gs24b4 */
  23. /* generate SCO Xenix/Unix style memory mapped ioctl output */
  24. #include "memory_.h"
  25. #include "gx.h"
  26. #include "gserrors.h"
  27. #include "gxdevice.h"
  28. #include "gdevpcfb.h"
  29. #include <signal.h>
  30.  
  31. #ifdef M_XENIX
  32. #include <sys/console.h>        /* SCO Xenix and SCO UNIX */
  33. #ifndef CONSIO
  34. #include <sys/machdep.h>        /* Xenix needs this also */
  35. #endif
  36. #else
  37. #include <sys/kd.h>            /* AT&T SVR4 */
  38. #endif
  39.  
  40. #if defined(__STDC__)
  41. #include "stdlib.h"
  42. #else
  43. extern char *getenv(P1(const char *));
  44. #endif
  45.  
  46. #if defined(M_XENIX)
  47. #include "prototypes.h"
  48. #include "fcntl.h"
  49. #else
  50. extern int ioctl(P3(int, int, ...));
  51. extern int open(P3(const char *, int, ...));
  52. #endif
  53.  
  54. private int console_fd = -1;    /* file descriptor of console */
  55. fb_ptr fb_addr;            /* address of frame buffer for unix */
  56. private int cur_mode = -1;    /* current video mode */
  57.  
  58. /* open the console */
  59. /* possible files to open:
  60.  * /dev/console = current system console
  61.  * /dev/vga = vga monitor
  62.  * /dev/tty = current terminal
  63.  */
  64.  
  65. private void open_console(P1(void));
  66.  
  67. private void
  68. open_console()
  69. {
  70.     const char *dev;
  71.     if (console_fd != -1) return;
  72.     dev = getenv("GSDEVICE");
  73.     if (dev == NULL || *dev == '\0')
  74.         dev = "/dev/tty";
  75.     console_fd = open(dev, 0);
  76.     if (console_fd == -1) {
  77.         ega_close((gx_device *)NULL);
  78.         eprintf1("unable to map display '%s'\n", dev);
  79.         perror("open_console");
  80.         exit(1);
  81.     }
  82. }
  83.  
  84. #if defined(__GNUC__)
  85.     /* Done with inline assembly in gdevpcfb.h */
  86. #else
  87. /* Output to a port */
  88. void
  89. outportb(uint port, byte data)
  90. {
  91.     int i;
  92.     struct port_io_arg pio;
  93.  
  94.     if (console_fd == -1) open_console();
  95.     pio.args[0].dir = OUT_ON_PORT;
  96.     pio.args[0].port = port;
  97.     pio.args[0].data = data;
  98.     pio.args[1].port = 0;
  99.     pio.args[2].port = 0;
  100.     pio.args[3].port = 0;
  101.     i = ioctl(console_fd, CONSIO, (long)(&pio));
  102.     if (i == -1) {
  103.         ega_close((gx_device *)NULL);
  104.         eprintf("error setting device register\n");
  105.         perror("outportb");
  106.         exit(1);
  107.     }
  108. }
  109.  
  110. /* Output to 2 consecutive ports */
  111. void
  112. outport2(uint port, byte index, byte data)
  113. {
  114.     int i;
  115.     struct port_io_arg pio;
  116.  
  117.     if (console_fd == -1) open_console();
  118.     pio.args[0].dir = OUT_ON_PORT;
  119.     pio.args[0].port = port;
  120.     pio.args[0].data = index;
  121.     pio.args[1].dir = OUT_ON_PORT;
  122.     pio.args[1].port = port + 1;
  123.     pio.args[1].data = data;
  124.     pio.args[2].port = 0;
  125.     pio.args[3].port = 0;
  126.     i = ioctl(console_fd, CONSIO, (long)(&pio));
  127.     if (i == -1) {
  128.         ega_close((gx_device *)NULL);
  129.         eprintf("error setting device register\n");
  130.         perror("outport2");
  131.         exit(1);
  132.     }
  133. }
  134. #endif
  135.  
  136. /* interrupt signal handler */
  137. /*  restore the video mode and exit */
  138. private void
  139. ega_int_handler(int sig)
  140. {
  141.     ega_close((gx_device *)NULL);
  142.     eprintf("GS exiting...\n");
  143.     exit(1);
  144. }
  145.  
  146. /*
  147.  * FIXME to make this work, the SIGCONT handler must restore the
  148.  * the video state, including all the registers.
  149.  * For now, I made the SIGSTOP handler exit just call the SIGINT handler
  150.  */
  151.  
  152. #ifdef    SIGTSTP
  153. /* user tried to stop us.  restore video and stop */
  154. private void
  155. ega_tstp_handler(int sig)
  156. {
  157. #if 1
  158.     ega_int_handler(sig);
  159. #else
  160.     /* Preferable, but sco does not restore the monitor corretly */
  161.     signal(SIGTSTP, ega_tstp_handler);
  162.     ega_close((gx_device *)NULL);
  163.     eprintf("GS stopping...\n");
  164.     signal(SIGSTOP,SIG_DFL);
  165.     kill(getpid(), SIGSTOP);
  166. #endif
  167. }
  168. #endif    /* SIGTSTP */
  169.  
  170. #ifdef    SIGCONT
  171. /* we were unstopped.  reopen video */
  172. private void
  173. ega_cont_handler(int sig)
  174. {
  175. #if 1
  176.     ega_int_handler(sig);
  177. #else
  178.     signal(SIGCONT, ega_cont_handler);
  179.     ega_set_mode(cur_mode);
  180. #endif
  181. }
  182. #endif    /* SIGCONT */
  183.  
  184. /* ------ Internal routines ------ */
  185.  
  186. /* Catch signals so we can restore the video mode on exit. */
  187. void
  188. pcfb_set_signals(gx_device *dev)
  189. {    signal(SIGINT, ega_int_handler);
  190.     signal(SIGTERM, ega_int_handler);
  191. #ifdef    SIGTSTP
  192.     signal(SIGTSTP, ega_tstp_handler);
  193. #endif
  194. #ifdef    SIGCONT
  195.     signal(SIGCONT, ega_cont_handler);
  196. #endif
  197. }
  198.  
  199. /* Read the device mode */
  200. void
  201. pcfb_get_state(pcfb_bios_state *pbs)
  202. {    int mode;
  203.     open_console();
  204.     mode = ioctl(console_fd, CONS_CURRENT, 0L);
  205.     if (mode == -1) {
  206. #ifdef __linux__
  207.         mode = M_ENH_C80x25;
  208. #else
  209.         ega_close((gx_device *)NULL);
  210.         eprintf("unable to get current console mode\n");
  211.         perror("pcfb_get_state");
  212.         exit(1);
  213. #endif
  214.     }
  215.     pbs->display_mode =
  216.         (mode == M_ENH_CG640 || mode == M_CG640x350 ? 0x10 :
  217. #ifdef M_VGA12
  218.          mode == M_VGA12 ? 0x12 :
  219. #endif
  220.          0x03);
  221. }
  222.  
  223. /* Set the device mode */
  224. void
  225. pcfb_set_mode(int mode)
  226. {    int i, mode1;
  227.     open_console();
  228.     cur_mode = mode;
  229.     mode1 = -1;
  230.     if (mode == 0x10) mode = SW_ENH_CG640;
  231. #ifdef SW_VGA12
  232.     else if (mode == 0x12) mode = SW_VGA12;
  233. #endif
  234.     else if (mode == 0x03) {
  235. #ifdef SW_VGA80x25
  236.         mode = SW_VGA80x25; mode1 = SW_ENHC80x25;
  237. #else
  238.         mode = SW_ENHC80x25;
  239. #endif
  240.     } else {
  241.         eprintf1("can not set to video mode %d\n", mode);
  242.         exit(1);
  243.     }
  244.     i = ioctl(console_fd, mode, 0L);
  245.     if (i == -1 && mode1 != -1)
  246.         i = ioctl(console_fd, mode1, 0L);
  247.     if (i == -1) {
  248.         ega_close((gx_device *)NULL);
  249.         eprintf("unable to set console mode\n");
  250.         perror("pcfb_set_mode");
  251.         exit(1);
  252.     }
  253. #ifdef VGA_IOPRIVL
  254.     if (ioctl(console_fd, VGA_IOPRIVL, 1) == -1) {
  255.         ega_close((gx_device *)NULL);
  256.         eprintf("unable to get I/O privilege\n");
  257.         perror("pcfb_set_mode");
  258.         exit(1);
  259.     }
  260. #endif
  261.     i = ioctl(console_fd, MAPCONS, 0L);
  262.     if (i == -1) {
  263.         ega_close((gx_device *)NULL);
  264.         eprintf("unable to map console adaptor's display memory\n");
  265.         perror("pcfb_set_mode");
  266.         exit(1);
  267.     }
  268.     fb_addr = (fb_ptr) (i);
  269. }
  270.  
  271. /* Restore the device state */
  272. void
  273. pcfb_set_state(const pcfb_bios_state *pbs)
  274. {    pcfb_set_mode(pbs->display_mode);
  275. }
  276.